From ee991a2daf8d889d0d54e377610e487b69115210 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Sat, 27 Aug 2011 12:20:19 +0100 Subject: [PATCH] Config.mk: Include optional .config file *first* rather than *last* Allows the core of Config.mk to correctly respond to any configuration overrides specified in the .config file. Signed-off-by: Keir Fraser --- Config.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Config.mk b/Config.mk index 2632e3ee2d..6505697df1 100644 --- a/Config.mk +++ b/Config.mk @@ -1,5 +1,7 @@ # -*- mode: Makefile; -*- +-include $(XEN_ROOT)/.config + # A debug build of Xen and tools? debug ?= y @@ -223,5 +225,3 @@ CONFIG_LOMOUNT ?= n ifeq ($(OCAML_TOOLS),y) OCAML_TOOLS := $(shell ocamlopt -v > /dev/null 2>&1 && echo "y" || echo "n") endif - --include $(XEN_ROOT)/.config -- 2.30.2